From 87a39e42b82c867e81b5687cef4ec8f2f090f417 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Fri, 31 Aug 2007 16:50:26 +0100 Subject: [PATCH] xend: Always build lowlevel security modules, as there are some dependencies on these from with xend proper. Signed-off-by: Keir Fraser --- tools/python/setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/python/setup.py b/tools/python/setup.py index 0b55ce7543..25c87c3b91 100644 --- a/tools/python/setup.py +++ b/tools/python/setup.py @@ -59,15 +59,10 @@ ptsname = Extension("ptsname", libraries = libraries, sources = [ "ptsname/ptsname.c" ]) -modules = [ xc, xs, ptsname ] +modules = [ xc, xs, ptsname, acm, flask ] if os.uname()[0] == 'SunOS': modules.append(scf) -if os.environ.get('XEN_SECURITY_MODULE') == 'acm': - modules.append(acm) -if os.environ.get('XEN_SECURITY_MODULE') == 'flask': - modules.append(flask) - setup(name = 'xen', version = '3.0', description = 'Xen', -- 2.30.2